// Locale mirror of `/` → renders `/de`. Re-exports the bare index verbatim // (it reads its locale from the URL via the layout's provider); getStaticPaths // tells `voltro build` which locale-prefixed paths to emit. The default locale // is NOT listed — it lives at the bare `/`. import { SUPPORTED_LOCALES, DEFAULT_LOCALE } from '../../lib/locale' export { default } from '../page' export { renderMode, interactive, meta } from '../page' export const getStaticPaths = async (): Promise> => SUPPORTED_LOCALES .filter((l) => l !== DEFAULT_LOCALE) .map((locale) => ({ params: { locale } }))